home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / client.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  15.0 KB  |  711 lines

  1. //----------------------------------------------------------------------------
  2. // Client side convience scripts
  3. //
  4. function buy(%desc)
  5. {
  6.     %type = getItemType(%desc);
  7.     if (%type != -1) {
  8.         remoteEval(2048,buyItem,%type);
  9.     }
  10.     else {
  11.         echo("Unknown item \"" @ %desc @ "\"");
  12.     }
  13. }
  14.  
  15. function markFavorites()
  16. {
  17.     // Currently done by the shell
  18. }
  19.  
  20. function remoteSetInfoLine(%mgr, %lineNum, %text)
  21. {
  22.    if(%mgr != 2048)
  23.       return;
  24.  
  25.     if (%lineNum == 1)
  26.     {
  27.         if (%text == "") Control::setVisible(InfoCtrlBox, FALSE);
  28.         else Control::setVisible(InfoCtrlBox, TRUE);
  29.     }
  30.  
  31.    Control::setText("InfoCtrlLine" @ %lineNum, %text);
  32. }
  33.  
  34.  
  35. function buyFavorites()
  36. {
  37.     // This function is invoked by the shell.
  38.     for (%i = 0; %i < 20; %i = %i + 1) {
  39.         if ($pref::itemFavorite[%i] != "") {
  40.             %type = getItemType($pref::itemFavorite[%i]);
  41.             if (%type != -1) {
  42.                 %list = %list @ "," @ %type;
  43.             }
  44.         }
  45.     }
  46.     if (%list != "") {
  47.         eval("remoteEval(2048,buyFavorites" @ %list @ ");");
  48.     }
  49. }    
  50.  
  51. function sell(%desc)
  52. {
  53.     %type = getItemType(%desc);
  54.     if (%type != -1) {
  55.         remoteEval(2048,sellItem,%type);
  56.     }
  57.     else {
  58.         echo("Unknown item \"" @ %desc @ "\"");
  59.     }
  60. }
  61.  
  62. function use(%desc)
  63. {
  64.     %type = getItemType(%desc);
  65.     if (%type != -1) {
  66.         // The client useItem function will make sure the use is
  67.         // sequenced correctly with trigger events.  The remoteEval
  68.         // works fine but may be delivered out of order.
  69.         // remoteEval(2048,useItem,%type);
  70.         useItem(%type);
  71.     }
  72.     else {
  73.         echo("Unknown item \"" @ %desc @ "\"");
  74.     }
  75. }
  76.  
  77. function drop(%desc)
  78. {
  79.     %type = getItemType(%desc);
  80.     if (%type != -1) {
  81.         remoteEval(2048,dropItem,%type);
  82.     }
  83.     else {
  84.         echo("Unknown item \"" @ %desc @ "\"");
  85.     }
  86. }
  87.  
  88. function throwStart()
  89. {
  90.     $throwStartTime = getSimTime();
  91. }
  92.  
  93. function throwRelease(%desc)
  94. {
  95.     %type = getItemType(%desc);
  96.     if (%type != -1) {
  97.         %delta = getSimTime() - $throwStartTime;
  98.         if (%delta > 1)
  99.             %delta = 100;
  100.         else
  101.             %delta = floor(%delta * 100);
  102.         remoteEval(2048,throwItem,%type,%delta);
  103.     }
  104.     else {
  105.         echo("Unknown item \"" @ %desc @ "\"");
  106.     }
  107. }
  108.  
  109. function deploy(%desc)
  110. {
  111.     %type = getItemType(%desc);
  112.     if (%type != -1) {
  113.         remoteEval(2048,deployItem,%type);
  114.     }
  115.     else {
  116.         echo("Unknown item \"" @ %desc @ "\"");
  117.     }
  118. }
  119.  
  120. function nextWeapon()
  121. {
  122.     // Up to the server right now
  123.     remoteEval(2048,nextWeapon);
  124. }    
  125.  
  126. function prevWeapon()
  127. {
  128.     // Up to the server right now
  129.     remoteEval(2048,prevWeapon);
  130. }
  131.  
  132. function commandAck()
  133. {
  134.     // Placed here to avoid binding problems with gui.
  135.     remoteEval(2048,CStatus,1,"Command Acknowledged~wacknow");
  136. }
  137.  
  138. function commandDeclined()
  139. {
  140.     // Placed here to avoid binding problems with gui.
  141.     remoteEval(2048,CStatus,0,"Unable to complete objective~wobjxcmp");
  142. }
  143.  
  144. function CommandCompleted()
  145. {
  146.     // Placed here to avoid binding problems with gui.
  147.     remoteEval(2048,CStatus,0,"Objective Completed~wobjcomp");
  148. }
  149.  
  150. function targetClient()
  151. {
  152.    if($lastClientMessage)
  153.    {
  154.       if(Client::getTeam(getManagerId()) == Client::getTeam($lastClientMessage))
  155.          %cmd = "Escort " @ Client::getName($lastClientMessage) @ ".~wescfr";
  156.       else
  157.          %cmd = "Attack " @ Client::getName($lastClientMessage) @ ".~wattway";
  158.       remoteEval(2048, "IssueTargCommand", 0, %cmd, $lastClientMessage - 2048, getManagerId());
  159.    }
  160. }
  161.  
  162. function onClientMessage(%client, %msg)
  163. {
  164.    if(%client)
  165.       $lastClientMessage = %client;
  166.  
  167.    // filter messages here
  168.    return true;
  169. }
  170.  
  171. function onTeamAdd(%team, %name)
  172. {
  173.  
  174. }
  175.  
  176. function onClientJoin(%client)
  177. {
  178.  
  179. }
  180.  
  181. function onClientDrop(%client)
  182. {
  183.  
  184. }
  185.  
  186. function onClientChangeTeam(%client, %team)
  187. {
  188.  
  189. }
  190.  
  191. function clearCenterPrint(%id)
  192. {
  193.    if(%id == $centerPrintId)
  194.       Client::centerPrint("", 0);
  195. }
  196.  
  197. function remoteITXT(%manager, %msg)
  198. {
  199.    if(%manager == 2048)
  200.       Control::setValue(EnergyDisplayText, %msg);
  201. }
  202.  
  203. function remoteCP(%manager, %msg, %timeout)
  204. {
  205.    if(%manager == 2048)
  206.    {
  207.       $centerPrintId++;
  208.       if(%timeout)
  209.          schedule("clearCenterPrint(" @ $centerPrintId @ ");", %timeout);
  210.       Client::centerPrint(%msg, 0);
  211.    }
  212. }
  213.  
  214. function remoteBP(%manager, %msg, %timeout)
  215. {
  216.    if(%manager == 2048)
  217.    {
  218.       $centerPrintId++;
  219.       if(%timeout)
  220.          schedule("clearCenterPrint(" @ $centerPrintId @ ");", %timeout);
  221.       Client::centerPrint(%msg, 1);
  222.    }
  223. }
  224.  
  225. function remoteTP(%manager, %msg, %timeout)
  226. {
  227.    if(%manager == 2048)
  228.    {
  229.       $centerPrintId++;
  230.       if(%timeout)
  231.          schedule("clearCenterPrint(" @ $centerPrintId @ ");", %timeout);
  232.       Client::centerPrint(%msg, 2);
  233.    }
  234. }
  235.  
  236. function kill()
  237. {
  238.     remoteEval(2048,kill);
  239. }    
  240.  
  241. function giveall()
  242. {
  243.     remoteEval(2048,giveall);
  244. }
  245.  
  246. // Fear aliases
  247. function setTeam(%team)
  248. {
  249.    remoteEval(2048, setTeam, %team);
  250. }
  251.  
  252. function say(%channel, %message)
  253. {
  254.    remoteEval(2048, say, %channel, %message);
  255. }
  256.  
  257. function mute(%playerName)
  258. {
  259.    remoteEval(2048, mute, 1, getClientByName(%playerName));
  260. }
  261.  
  262. function unmute(%playerName)
  263. {
  264.    remoteEval(2048, mute, 0, getClientByName(%playerName));
  265. }
  266.  
  267. function show()
  268. {
  269.    // redefine end frame script
  270.    function Game::EndFrame()
  271.    {
  272.    }
  273.    $Console::LastLineTimeout = 0;
  274.    $Console::updateMetrics = false;
  275. }
  276. show();
  277.  
  278. function showTime()
  279. {
  280.    function Game::EndFrame()
  281.    {
  282.       echo("C: " @ getIntegerTime(false) @ "   S: " @ getIntegerTime(true));
  283.    }
  284.    $Console::LastLineTimeout = 1000;
  285.    $Console::updateMetrics = false;
  286. }
  287.  
  288. function showFPS()
  289. {
  290.    function Game::EndFrame()
  291.    {
  292.        echo($ConsoleWorld::FrameRate);
  293.    }
  294.    $Console::LastLineTimeout = 1000;
  295.    $Console::updateMetrics = false;
  296. }
  297.  
  298. function showGfxOGL()
  299. {
  300.    function Game::EndFrame()
  301.    {
  302.        echo($ConsoleWorld::FrameRate  @
  303.                " T: "   @ $OpenGL::TexDL @
  304.                " L: "   @ $OpenGL::LMDL  @
  305.                " LB: "  @ $OpenGL::LMB   @
  306.                " E: "   @ $OpenGL::ET);
  307.    }
  308.    $Console::LastLineTimeout = 1000;
  309. }
  310.  
  311. function showGfxSW()
  312. {
  313.    function Game::EndFrame()
  314.    {
  315.       echo($ConsoleWorld::FrameRate 
  316.        @ " P:" @ $GFXMetrics::EmittedPolys
  317.        @ ", " @ $GFXMetrics::RenderedPolys
  318.        @ " TSU:", $GFXMetrics::textureSpaceUsed);
  319.    }
  320.    $Console::LastLineTimeout = 1000;
  321.    $Console::updateMetrics = true;
  322. }
  323.  
  324. function messageAndAnimate(%animSeq,%wav)
  325.     remoteEval(2048,playAnimWav,%animSeq,%wav);
  326. }
  327.  
  328. function remotePlayAnimWav(%cl, %anim, %wav)
  329. {
  330.    remotePlayAnim(%cl, %anim);
  331.    playVoice(%cl, %wav);
  332. }
  333.  
  334. function remoteLMSG(%cl, %wav)
  335. {
  336.    playVoice(%cl, %wav);
  337. }
  338.  
  339. function localMessage(%wav)
  340. {
  341.    remoteEval(2048, LMSG, %wav);
  342. }
  343.  
  344. function changeLevel(%newLevel)
  345. {
  346.    remoteEval(2048, changeLevel, %newLevel);
  347. }
  348.  
  349. function setArmor(%armorType)
  350. {
  351.    remoteEval(2048, setArmor, %armorType);
  352. }
  353.  
  354. function voteYes()
  355. {
  356.    remoteEval(2048, VoteYes);
  357. }
  358.  
  359. function voteNo()
  360. {
  361.    remoteEval(2048, VoteNo);
  362. }
  363.  
  364. //editing functions
  365.  
  366. function winMouse()
  367. {
  368.    inputDeactivate(mouse0);
  369.    windowsMouseEnable(MainWindow);
  370. }
  371.  
  372. function dirMouse()
  373. {
  374.    inputActivate(mouse0);
  375.    windowsMouseDisable(MainWindow);
  376. }
  377.  
  378. function editGui()
  379. {
  380.    winMouse();
  381.    GuiInspect(MainWindow);
  382.    GuiToolbar(MainWindow);
  383. }
  384.  
  385. function tree()
  386. {
  387.     simTreeCreate(tree, MainWindow);
  388.     simTreeAddSet(tree, manager);
  389. }
  390.  
  391. function toggleMouse()
  392. {
  393.    if($flagMouseDirect = !$flagMouseDirect)
  394.    {
  395.       dirMouse();
  396.    }
  397.    else
  398.    {
  399.       winMouse();
  400.    }
  401. }
  402.  
  403. function remoteSetTime(%server, %time)
  404. {
  405.    if(%server == 2048)
  406.       setHudTimer(%time);
  407. }
  408.  
  409. function SAD(%password)
  410. {
  411.    remoteEval(2048, AdminPassword, %password);
  412. }
  413.  
  414. function SADSetPassword(%password)
  415. {
  416.    remoteEval(2048, SetPassword, %password);
  417. }
  418.  
  419. function ADSetTimeLimit(%time)
  420. {
  421.    remoteEval(2048, SetTimeLimit, %time);
  422. }
  423.  
  424. function ADSetTeamInfo(%team, %teamName, %skinBase)
  425. {
  426.    remoteEval(2048, SetTeamInfo, %team, %teamName, %skinBase);
  427. }
  428.  
  429. function remoteSVInfo(%server, %version, %hostname, %mod, %info, %favKey)
  430. {
  431.    if(%server == 2048)
  432.    {
  433.       $ServerVersion = %version;
  434.       $ServerName = %hostname;
  435.       $modList = %mod;
  436.       $ServerMod = $modList;
  437.       $ServerInfo = %info;
  438.       $ServerFavoritesKey = %favKey;
  439.       EvalSearchPath();
  440.    }
  441. }
  442.  
  443.  
  444. function remoteMODInfo(%server, %modString)
  445. {
  446.    if(%server == 2048)
  447.    {
  448.       $ServerModInfo = %modString;
  449.       // if it is not "", 
  450.       // show it on the loading gui
  451.       if($ServerModInfo != "")
  452.       {
  453.          Control::setValue(ModTextString, "<jc><f1>NOTICE: This server has been modified\n<f0>" @ %modString);
  454.       }
  455.    }
  456. }
  457.  
  458. function remoteFileURL(%server, %url)
  459. {
  460.    if(%server == 2048)
  461.    {
  462.       $ServerFileURL = %url;
  463.       // if a disconnect occurs, pop this string up instead of error message
  464.    }
  465. }
  466.  
  467. function remoteMInfo(%server, %missionName)
  468. {
  469.    if(%server == 2048)
  470.    {
  471.       %file = "missions\\" @ %missionName @ ".dsc";
  472.       $MDESC::Type = "";
  473.       $MDESC::Text = "";
  474.       if(File::findFirst(%file) != "")
  475.          exec(%file);
  476.       $ServerMission = %missionName;
  477.       $ServerText = $MDESC::Text;
  478.       $ServerMissionType = $MDESC::Type;
  479.         if(isObject(LobbyGui))
  480.             LobbyGui::onOpen();  // update lobby screen text.
  481.    }
  482. }
  483.  
  484. function remoteMissionChangeNotify(%serverManagerId, %nextMission)
  485. {
  486.    if(%serverManagerId == 2048)
  487.    {
  488.       cls();
  489.       echo("Server mission complete - changing to mission: ", %nextMission);
  490.       echo("Flushing Texture Cache");
  491.       flushTextureCache();
  492.       schedule("purgeResources(true);", 3);
  493.    }
  494. }
  495.  
  496. function dataGotBlock(%blockName, %pctDone)
  497. {
  498.    if(%pctDone < 0.1)
  499.       %text = "Initializing Personal Digital Assistant...";
  500.    else if(%pctDone < 0.2)
  501.       %text = "Establishing uplink with satellite network...";
  502.    else if(%pctDone < 0.3)
  503.       %text = "Downloading navigational and topographical data...";
  504.    else if(%pctDone < 0.4)
  505.       %text = "Charging armor energy cell...";
  506.    else if(%pctDone < 0.5)
  507.       %text = "Pingback satellite uplink check...";
  508.    else if(%pctDone < 0.6)
  509.       %text = "Beginning primary weapons system check...";
  510.    else if(%pctDone < 0.7)
  511.       %text = "Beginning secondary weapons system check...";
  512.    else if(%pctDone < 0.8)
  513.       %text = "Downloading tactical information from tribal database...";
  514.    else
  515.       %text = "Starting armor power-up sequence...";
  516.  
  517.    //Control::setText(ProgressText, "Loading " @ %blockName @ " data...");
  518.    Control::setValue(ProgressText, "<jc><f1>" @ %text);
  519.    Control::setValue(ProgressSlider, %pctDone * 0.75);
  520. }
  521.  
  522. function dataFinished()
  523. {
  524.    // called on client when all the dynamic data has
  525.    // finished transfer.
  526.  
  527.     if ($cdMusic && !$pref::userCDOverride)
  528.     {
  529.         rbSetPlayMode (CD, 0);
  530.         rbStop (CD);
  531.     }
  532.    Control::setValue(ProgressText, "<jc><f0>Get ready to rock n' roll!");
  533.    Control::setValue(ProgressSlider, 0.9);
  534.  
  535.    $dataFinished = true;
  536.    remoteEval(2048, dataFinished);
  537.  
  538.    echo("Flushing Texture Cache");
  539.    flushTextureCache();
  540. }
  541.  
  542. function onClientGhostAlwaysDone()
  543. {
  544.    // preload the commander gui if it's not already loaded
  545.    if(!isObject("commandGui"))
  546.       loadObject("commandGui", "gui\\command.gui");
  547.  
  548.    %temp = $pref::terrainTextureDetail;
  549.    $pref::terrainTextureDetail = 1;
  550.    rebuildCommandMap();
  551.    $pref::terrainTextureDetail = %temp;
  552.    flushTextureCache();
  553.    purgeResources(true);
  554.    remoteEval(2048, "CGADone");
  555.  
  556. //   echo("Registering Static Textures");
  557. //   RegisterStaticTextures(MainWindow);
  558. }
  559.  
  560. function remoteSetMusic (%player, %track, %mode)
  561. {
  562.     if(%player == 2048)
  563.    {
  564.        $cdPlayMode = %mode;
  565.        $cdTrack = %track;
  566.        if (!$pref::userCDOverride)
  567.        {
  568.            if ($cdTrack == 0)
  569.             {
  570.                 rbSetPlayMode (CD, 0);
  571.                 rbStop (CD);
  572.             }
  573.            else
  574.                if ($cdTrack != "")
  575.                 {
  576.                     rbSetPlayMode (CD, 0);
  577.                     rbStop (CD);
  578.                     rbSetPlayMode (CD, $cdPlayMode);
  579.                     if ($pref::cdMusic)
  580.                         rbPlay (CD, $cdTrack);
  581.                 }
  582.        }
  583.    }
  584. }
  585.  
  586. function onConnectionError(%client, %manager, %errorString)
  587. {
  588.    if(%manager == 2048)
  589.    {
  590.    }
  591.    else
  592.    {
  593.       Quickstart();
  594.       GuiPushDialog(MainWindow, "gui\\MessageDialog.gui");
  595.       $errorString = "Connection to server error:\n" @ %errorString;
  596.         schedule("Control::setValue(MessageDialogTextFormat, $errorString);", 0);
  597.    }
  598. }
  599.  
  600. function onConnection(%message)
  601. {
  602.    echo("Connection ", %message);
  603.    $dataFinished = false;
  604.    if(%message == "Accepted")
  605.    {
  606.       resetSimTime();
  607.         //execute the custom script
  608.         if ($PCFG::Script != "")
  609.         {
  610.             exec($PCFG::Script);
  611.         }
  612.  
  613.       resetPlayDelegate();
  614.       remoteEval(2048, "SetCLInfo", $PCFG::SkinBase, $PCFG::RealName, $PCFG::EMail, $PCFG::Tribe, $PCFG::URL, $PCFG::Info, $pref::autoWaypoint, $pref::noEnterInvStation, $pref::messageMask);
  615.  
  616.         if ($Pref::PlayGameMode == "JOIN")
  617.         {
  618.             cursorOn(MainWindow);
  619.           GuiLoadContentCtrl(MainWindow, "gui\\Loading.gui");
  620.             renderCanvas(MainWindow);
  621.         }
  622.  
  623.    }
  624.    else if(%message == "Rejected")
  625.    {
  626.         Quickstart();
  627.       $errorString = "Connection to server rejected:\n" @ $errorString;
  628.       GuiPushDialog(MainWindow, "gui\\MessageDialog.gui");
  629.         schedule("Control::setValue(MessageDialogTextFormat, $errorString);", 0);
  630.    }
  631.    else
  632.    {
  633.       //startMainMenuScreen();
  634.         Quickstart();
  635.  
  636.       if(%message == "Dropped")
  637.       {
  638.          if($errorString == "")
  639.             $errorString = "Connection to server lost:\nServer went down.";
  640.          else
  641.             $errorString = "Connection to server lost:\n" @ $errorString;
  642.  
  643.          GuiPushDialog(MainWindow, "gui\\MessageDialog.gui");
  644.            schedule("Control::setValue(MessageDialogTextFormat, $errorString);", 0);
  645.       }
  646.       else if(%message == "TimedOut")
  647.       {
  648.          $errorString = "Connection to server timed out.";
  649.          GuiPushDialog(MainWindow, "gui\\MessageDialog.gui");
  650.            schedule("Control::setValue(MessageDialogTextFormat, $errorString);", 0);
  651.       }
  652.    }
  653. }
  654.  
  655. function onPlaybackFinished()
  656. {
  657.    // called when a recording is done with playback.
  658.     cursorOn(MainWindow);
  659.    GuiLoadContentCtrl(MainWindow, "gui\\Recordings.gui");
  660. }
  661.  
  662. function setupRecorderFile(%fileName)
  663. {
  664.     if(%fileName != "" && %fileName != "False") {
  665.         if(isFile("recordings\\" @ %fileName)) 
  666.             echo("Warning- " @ %fileName @ " File Already Exists");
  667.         $recorderFileName = "recordings\\" @ %fileName;
  668.         if($recorderFileName != "False") {
  669.             echo("File is named: ",%fileName);
  670.             return "True";
  671.         }    
  672.      }
  673.     else {
  674.         for(%i = 0; %i < 500; %i++) {
  675.             if(!isFile("recordings\\recording" @ %i @ ".rec")) {
  676.               $recorderFileName = "recordings\\recording" @ %i @ ".rec";
  677.                 if($recorderFileName != "False") {
  678.                     echo("File is named: recording",%i,".rec");
  679.                     return "True";
  680.                 }    
  681.             }        
  682.         }
  683.     }
  684.     echo("Couldn't setup File");
  685.     return "False";    
  686. }
  687.  
  688. function EnterLobbyMode()
  689. {
  690.    schedule("ELM();", 0);
  691. }
  692.  
  693. function ELM()
  694. {
  695.    if($playingDemo)
  696.    {
  697.       setCursor(MainWindow, "Cur_Arrow.bmp");
  698.       disconnect();
  699.       startMainMenuScreen();
  700.       GuiLoadContentCtrl(MainWindow, "gui\\Recordings.gui");
  701.    }
  702.    else
  703.    {
  704.        $InLobbyMode = true;
  705.       GuiLoadContentCtrl(MainWindow, "gui\\Lobby.gui");
  706.       CursorOn(MainWindow);
  707.    }
  708. }
  709.  
  710.